home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Algorithms for Image Analysis
/
Practical Algorithms for Image Analysis.iso
/
LIBIP
/
CONVOLVE.H
< prev
next >
Wrap
C/C++ Source or Header
|
1999-09-11
|
278b
|
19 lines
/*
* convolve.h
*
* Practical Algorithms for Image Analysis
*
* Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
*/
#ifndef _CONVOLVE_H_
#define _CONVOLVE_H_
typedef struct Matrix {
float **matrix;
int nRows;
int nCols;
} Matrix;
#endif /* _CONVOLVE_H_ */